body {
  background-color: #030303 !important;
}

.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.popup-content {
  overflow-y: scroll;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #030303;
  padding-top: 20px;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: popup-fade 0.6s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.popup__holder {
  padding-top: 24px;
  margin-top: -20px;
  height: 350px;
  background-color: #252628;
  border-radius: 0px 0px 190px 190px/60px;
}

.popup-header {
  display: flex;
  margin-bottom: 20px;
}

.popup-header img {
  position: relative;
  right: 24px;
}

.food-details__heading {
  flex: 1;
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  margin-left: 33px;
}

.popupSwiper {
  width: 235px;
  height: 235px;
  border-radius: 150px;
  overflow: hidden;
  position: relative;
  margin-top: -180px;
}

.popupSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-details__image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.swiper.popupSwiper {
  position: relative;
}

.food-details {
  color: #fff;
  text-align: right;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.food-details__description {
  padding: 0 44px;
}

.food-details__details {
  padding: 0 44px;
}

.food-size{
  padding: 0 24px;
  margin: 0 6.6%;
}

.sizes > div {
  width: 72px;
  height: 101px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sizes {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.active-size{
  border: none !important;
}

.sizes__image {
  width: 72px;
  height: 72px;
  background-color: #252628;
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sizes-v2 .sizes__image{
  background-color: #e3d0b4
}
#sizes-v3 .sizes__image{
  background-color: #d1e3b4
}

.sizes__image svg {
  height: 100%;
  width: 40px;
}

.sizes > div > span {
  font-size: 12px;
  color: #ffffff !important;
  margin-top: 11px;
  background-color: transparent;
  width: unset;
}
#sizes-v2 > div > span, 
#sizes-v3 > div > span {
  color: #111111 !important;
}

.active-size .sizes__image {
  background-color: #de7129;
}
#sizes-v2 .active-size .sizes__image{
  background-color: #382a1a
}
#sizes-v3 .active-size .sizes__image{
  background-color: rgb(115, 147, 64)
}

.sizes__image svg rect {
  fill: transparent;
  stroke: transparent;
}
.sizes__image svg circle,
.sizes__image svg path,
.sizes__image svg ellipse {
  stroke: #ffffff !important;
}
.food-price {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.food-details__price {
  padding: 8px 28px;
  width: 85%;
  height: 57px;
  /* background-color: #de7129; */
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  border-radius: 28px;
  color: #fff;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 20px;
}

.food-details__slider {
  position: relative;
  z-index: 100;
  top: -130px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  position: relative;
}

.food-details__slider img {
  width: fit-content;
  margin: 0;
  cursor: pointer;
}

.food-details__heading-english {
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  padding-right: 35px;
  padding-left: 35px;
  position: relative;
  top: -15px;
}

.food-details__video {
  display: flex;
  height: 35px;
  align-items: center;
  cursor: pointer;
  position: relative;
  right: 0;
  margin-right: 44px;
  width: 40%;
  font-size: 14px;
  color: #de7129;
}

.food-details__video span {
  margin: 0;
}

.food-details__video img {
  margin: 0;
}

.food-details video {
  display: none;
  height: 200px;
}

@keyframes popup-fade {
  0% {
    opacity: 0;
    transform: translate(-50%, 100%);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

#change-data{
  display: none;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}
.modal-content {
  position: fixed; 
  top: 40%; 
  right: 33%;
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 7px; 
  width: 30%;
}
div.modal-content div{
  display: flex; 
  flex-direction: column;
  justify-content: center; 
  align-items: center;
  height: 100%;
  min-height: 110px;
}

div.modal-content div p{
  font-family: dana;
  text-align: center;
}

@media screen and (max-width: 314px) {
  .modal-content {
    right: 4%;
    width: 92%;
  }
}
@media screen and (max-width: 370px) and (min-width:315px) {
  .modal-content {
    right: 18%;
    width: 65%;
  }
}
@media screen and (max-width: 531px) and (min-width:371px){
  .modal-content {
    right: 22.5%;
    width: 55%;
  }
}
@media screen and (max-width: 1024px) and (min-width:951px) {
  .modal-content {
    right: 33%;
    width: 34%;
  }
}

.swiper-wrapper .swiper-slide img{
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.my-modal {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  overflow: hidden;
  width: 90%;
  height: 500px;
}
.modal-swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
  margin-top: 8px;
}
.modal-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}
.swiper-pagination {
  position: absolute;
  bottom: 0px !important;
}
.modal-swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 4px;
  background-color: #7d7d7d !important;
  transition: 0.5s;
}
.swiper-pagination-bullet-active {
  background-color: #b8b8b8 !important;
  width: 26px;
}

.sizes span{
  background-color: unset;
}